home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Sample Controls / Gradient / CErrorControl.h < prev    next >
Encoding:
Text File  |  1996-12-20  |  554 b   |  29 lines  |  [TEXT/CWIE]

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    This file is a BDIAMOND addition.
  4. //
  5.  
  6. #ifndef __CErrorControl_h__
  7. #define __CErrorControl_h__
  8.  
  9. class CError;
  10.  
  11. ///////////////////////////////////////////////////////////////////////////////
  12. //
  13. //    CErrorControl class declaration.  
  14. //
  15. //    CErrorControl is a place to put functionality that is common to all
  16. //    controls that handle CErrors.
  17. //
  18.  
  19. class CErrorControl
  20. {
  21. public:
  22.     CErrorControl(void);
  23.     ~CErrorControl(void);
  24.     
  25. friend CError;
  26.  
  27. };
  28.  
  29. #endif // __CErrorControl_h__